home *** CD-ROM | disk | FTP | other *** search
- winnerDisplay._visible = 0;
- BG.Music.setVolume(30);
- BG.Music.start(0,999);
- MusicBtn.onPress = function()
- {
- if(this._currentframe == 1)
- {
- this.gotoAndStop(2);
- _root.BG.Music.stop("Bmusic");
- }
- else
- {
- this.gotoAndStop(1);
- _root.BG.Music.start(0,9999);
- }
- };
- MusicBtn.onRollOver = function()
- {
- oColor = new Color(this);
- oColor.setTransform({ra:-100,ga:-100});
- };
- MusicBtn.onRollOut = function()
- {
- oColor = new Color(this);
- oColor.setTransform({ra:100,ga:100});
- };
- MusicBtn.onDragOver = function()
- {
- oColor = new Color(this);
- oColor.setTransform({ra:-100,ga:-100});
- };
- MusicBtn.onDragOut = function()
- {
- oColor = new Color(this);
- oColor.setTransform({ra:100,ga:100});
- };
-